home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / macabuse / inc / lcache.hpp < prev    next >
C/C++ Source or Header  |  1997-05-20  |  370b  |  16 lines

  1. #ifndef __LCACHE_HPP_
  2. #define __LCACHE_HPP_
  3. #include "lisp.hpp"
  4.  
  5. #ifdef SCADALISP
  6. #define can_cache_lisp() 0
  7. #else
  8. #define can_cache_lisp() 1
  9. #endif
  10. class memory_file;
  11. long block_size(Cell *level);              // return number of bytes to save this block of code
  12. void write_level(memory_file *fp, Cell *level);
  13. Cell *load_block(memory_file *fp);
  14.  
  15. #endif
  16.